type net/http.http2stream
28 uses
net/http (current package)
h2_bundle.go#L4390: streams: make(map[uint32]*http2stream),
h2_bundle.go#L4571: streams map[uint32]*http2stream
h2_bundle.go#L4622: type http2stream struct {
h2_bundle.go#L4658: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
h2_bundle.go#L5122: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
h2_bundle.go#L5668: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
h2_bundle.go#L5918: func (st *http2stream) isPushed() bool {
h2_bundle.go#L5924: func (st *http2stream) endStream() {
h2_bundle.go#L5940: func (st *http2stream) copyTrailersToHandlerRequest() {
h2_bundle.go#L5951: func (st *http2stream) onReadTimeout() {
h2_bundle.go#L5961: func (st *http2stream) onWriteTimeout() {
h2_bundle.go#L6104: func (st *http2stream) processTrailerHeaders(f *http2MetaHeadersFrame) error {
h2_bundle.go#L6153: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
h2_bundle.go#L6160: st := &http2stream{
h2_bundle.go#L6189: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
h2_bundle.go#L6258: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp httpcommon.ServerRequestParam) (*http2responseWriter, *Request, error) {
h2_bundle.go#L6294: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
h2_bundle.go#L6402: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
h2_bundle.go#L6434: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
h2_bundle.go#L6444: st *http2stream
h2_bundle.go#L6451: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
h2_bundle.go#L6461: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
h2_bundle.go#L6472: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
h2_bundle.go#L6477: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
h2_bundle.go#L6500: stream *http2stream
h2_bundle.go#L6555: stream *http2stream
h2_bundle.go#L7126: parent *http2stream
h2_bundle.go#L11010: stream *http2stream